home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / WWSet.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  310 b   |  18 lines

  1.  
  2. #import <appkit/appkit.h>
  3. #import "Protocol_WWRenderable.h"
  4.  
  5. @interface WWSet:Object <WWRenderable>
  6. {
  7.    char  *var, *value, *cmd;
  8.    id    interp;
  9. }
  10.  
  11. - initWithInterp:myInterp;
  12. - setVar:(const char *)newVar value:(const char *)newValue;
  13. - (const char *)var;
  14. - (const char *)value;
  15. - (const char *)cmd;
  16.  
  17. @end
  18.